home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / sml_nj / 93src.lha / src / runtime / mp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-09  |  352 b   |  18 lines

  1. /* mp.h
  2.  *
  3.  * COPYRIGHT (c) 1990 by AT&T Bell Laboratories.
  4.  */
  5. #ifndef _MP_
  6. #define _MP_
  7.  
  8. #ifndef MAX_PROCS
  9. #define MAX_PROCS 1
  10. #endif /* !MAX_PROCS */
  11.  
  12. #define MLPROC_RUNNING     0  /* processor is running   */
  13. #define MLPROC_SUSPENDED   1  /* processor is suspended */
  14. #define MLPROC_NO_PROC     2  /* no processor allocated */
  15.  
  16. #endif /* !_MP_ */
  17.  
  18.